diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-06-10 16:53:28 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-06-10 16:53:28 +0700 |
| commit | 5e5b67e5b98d3183044dc5149fe67a29feeb3c41 (patch) | |
| tree | 11776ab7470ef0a555c6eec93bd79dca1189721e /src/pages/shop/promo/[slug].jsx | |
| parent | c88d98f06a6301bad6dd6d2e58b4908d8562638c (diff) | |
<iman> update promotion-program
Diffstat (limited to 'src/pages/shop/promo/[slug].jsx')
| -rw-r--r-- | src/pages/shop/promo/[slug].jsx | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/pages/shop/promo/[slug].jsx b/src/pages/shop/promo/[slug].jsx deleted file mode 100644 index 4211ceb8..00000000 --- a/src/pages/shop/promo/[slug].jsx +++ /dev/null @@ -1,46 +0,0 @@ -import dynamic from 'next/dynamic' -import { getIdFromSlug, getNameFromSlug } from '@/core/utils/slug' -import { useRouter } from 'next/router' -import _ from 'lodash' -import Seo from '@/core/components/Seo' -import Promocrumb from '@/lib/promo/components/Promocrumb' -import useBrand from '@/lib/brand/hooks/useBrand' - -const BasicLayout = dynamic(() => import('@/core/components/layouts/BasicLayout')) -const ProductSearch = dynamic(() => import('@/lib/product/components/ProductSearch')) -const Brand = dynamic(() => import('@/lib/brand/components/Brand')) - -export default function BrandDetail() { - const router = useRouter() - const { slug = '' } = router.query - console.log("apa itu slug",slug) - const brandName = getNameFromSlug(slug) - const id = getIdFromSlug(slug) - const {brand} = useBrand({id}) - return ( - <BasicLayout> - {/* seakarang arahkan web untuk menampilkan daftar promo sesuai slug */} - - <Seo - title={`Promo ${slug} Terkini`} - description='B2B Marketplace MRO & Industri dengan Layanan Pembayaran Tempo, Faktur Pajak, Online Quotation, Garansi Resmi & Harga Kompetitif' - - /> - - <Promocrumb brandName={slug} /> - - harusnya disini menampilkan barang promosimya {slug} - - - {/* <Brand brand={brand} /> - {!_.isEmpty(router.query) && ( - <ProductSearch - query={_.omit(router.query, 'slug')} - prefixUrl={`/shop/promo/${slug}`} - defaultBrand={getNameFromSlug(slug)} - brand={brand} - /> - )} */} - </BasicLayout> - ) -} |
